home *** CD-ROM | disk | FTP | other *** search
- property mMyCurrentScore, mMyHighestScore, mDidIBeatRecord, mMyName
-
- on birth me
- return me
- end
-
- on mGetMyName me
- return the mMyName of me
- end
-
- on mSetMyName me, arg
- set the mMyName of me to arg
- end
-
- on mGetMyHighestScore me
- return the mMyHighestScore of me
- end
-
- on mSetMyHighestScore me, arg
- set the mMyHighestScore of me to arg
- end
-
- on mGetMyCurrentScore me
- return the mMyCurrentScore of me
- end
-
- on mSetMyCurrentScore me, arg
- set the mMyCurrentScore of me to arg
- if mMyCurrentScore < 0 then
- set mMyCurrentScore to 0
- end if
- end
-
- on mGetBeatHighScore me
- if (mMyCurrentScore >= mMyHighestScore) and (mMyCurrentScore > 0) then
- SortListDescending()
- return 1
- else
- return 0
- end if
- end
-
- on mSetBeatHighScore me, arg
- set the mDidIBeatRecord of me to arg
- end
-